summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2023-07-07 20:08:18 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2023-07-07 20:08:18 +0200
commit738b37e5089356911e19d51136e196de3495fea1 (patch)
tree4b4fd2f3157ed81514eea9716be6102d9898c5b3
parentandroid-build: Run only on yuzu-android repository (diff)
downloadyuzu-738b37e5089356911e19d51136e196de3495fea1.tar
yuzu-738b37e5089356911e19d51136e196de3495fea1.tar.gz
yuzu-738b37e5089356911e19d51136e196de3495fea1.tar.bz2
yuzu-738b37e5089356911e19d51136e196de3495fea1.tar.lz
yuzu-738b37e5089356911e19d51136e196de3495fea1.tar.xz
yuzu-738b37e5089356911e19d51136e196de3495fea1.tar.zst
yuzu-738b37e5089356911e19d51136e196de3495fea1.zip
-rw-r--r--.github/workflows/verify.yml19
1 files changed, 10 insertions, 9 deletions
diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml
index 6420fd82b..cbe6b0fbd 100644
--- a/.github/workflows/verify.yml
+++ b/.github/workflows/verify.yml
@@ -85,16 +85,17 @@ jobs:
restore-keys: |
${{ runner.os }}-msvc-
- name: Install dependencies
- # due to how chocolatey works, only cmd.exe is supported here
- shell: cmd
+ shell: pwsh
run: |
- choco install wget
- call refreshenv
- wget https://github.com/mbitsnbites/buildcache/releases/download/v0.27.6/buildcache-windows.zip
- 7z x buildcache-windows.zip
- copy buildcache\bin\buildcache.exe C:\ProgramData\chocolatey\bin
- rmdir buildcache
- echo %PATH% >> %GITHUB_PATH%
+ $ErrorActionPreference = "Stop"
+ $BuildCacheVer = "v0.28.4"
+ $File = "buildcache-windows.zip"
+ $Uri = "https://github.com/mbitsnbites/buildcache/releases/download/$BuildCacheVer/$File"
+ $WebClient = New-Object System.Net.WebClient
+ $WebClient.DownloadFile($Uri, $File)
+ 7z x $File
+ $CurrentDir = Convert-Path .
+ echo "$CurrentDir/buildcache/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install Vulkan SDK
shell: pwsh
run: .\.ci\scripts\windows\install-vulkan-sdk.ps1